Solar Energy 2 Click
Solar Energy 2 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.
Click Library
- Author : Nenad Filipovic
- Date : Jan 2023.
- Type : I2C type
Software Support
Example Description
This library contains API for the Solar Energy 2 Click driver. This driver provides functions to configure the power management controller with an energy harvesting interface.
Example Libraries
- MikroSDK.Board
- MikroSDK.Log
- Click.SolarEnergy2
Example Key Functions
- solarenergy2_cfg_setup Config Object Initialization function.
void solarenergy2_cfg_setup(solarenergy2_cfg_t *cfg)
Solar Energy 2 configuration object setup function.
Solar Energy 2 Click configuration object.
Definition solarenergy2.h:319
- solarenergy2_init Initialization function.
err_t solarenergy2_init(solarenergy2_t *ctx, solarenergy2_cfg_t *cfg)
Solar Energy 2 initialization function.
Solar Energy 2 Click context object.
Definition solarenergy2.h:297
- solarenergy2_default_cfg Click Default Configuration function.
err_t solarenergy2_default_cfg(solarenergy2_t *ctx)
Solar Energy 2 default configuration function.
- solarenergy2_set_pwr_current_source Solar Energy 2 power source selection function.
err_t solarenergy2_set_pwr_current_source(solarenergy2_t *ctx, uint8_t crt_src_sel)
Solar Energy 2 power source selection function.
- solarenergy2_config_abs_voltage Solar Energy 2 config absolute voltage function.
err_t solarenergy2_config_abs_voltage(solarenergy2_t *ctx, solarenergy2_abs_vtg_v_t abs_vtg)
Solar Energy 2 config absolute voltage function.
Solar Energy 2 Click operation battery voltage values object.
Definition solarenergy2.h:383
- solarenergy2_set_mppt_ratio Solar Energy 2 set MPPT ratio function.
err_t solarenergy2_set_mppt_ratio(solarenergy2_t *ctx, uint8_t mppt_ratio)
Solar Energy 2 set MPPT ratio function.
Application Init
Initialization of I2C module and log UART. After driver initialization, the app set default settings.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
{
log_error( &logger, " Default configuration." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
Delay_ms ( 100 );
}
#define SOLARENERGY2_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition solarenergy2.h:281
void application_init(void)
Definition main.c:80
@ SOLARENERGY2_ERROR
Definition solarenergy2.h:340
Application Task
This is an example that shows the use of Solar Energy 2 Click board™. The following example will charge the battery if it is below the maximum voltage of the application of 3.40 V, stop charging when the battery is full and monitor additional status and storage element voltage information. Results are being sent to the Usart Terminal where you can track their changes.
{
{
{
}
}
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
err_t solarenergy2_get_status(solarenergy2_t *ctx, solarenergy2_status_t *status)
Solar Energy 2 get status function.
err_t solarenergy2_get_bat_vtg_status(solarenergy2_t *ctx, solarenergy2_bat_vtg_status_t *bat_vtg_status)
Solar Energy 2 get storage element status function.
void application_task(void)
Definition main.c:117
void display_status(void)
Definition main.c:37
@ SOLARENERGY2_OK
Definition solarenergy2.h:339
Application Output
This Click board can be interfaced and monitored in two ways:
- Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
- UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
Additional Notes and Information
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.